home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Online / Apache / conf / httpd.conf-dist < prev    next >
Text File  |  1997-08-19  |  6KB  |  185 lines

  1. # This is the main server configuration file. See URL http://www.apache.org/
  2. # for instructions.
  3.  
  4. # Do NOT simply read the instructions in here without understanding
  5. # what they do, if you are unsure consult the online docs. You have been
  6. # warned.  
  7.  
  8. # Originally by Rob McCool
  9.  
  10. # ServerType is either inetd, or standalone.
  11.  
  12. ServerType standalone
  13.  
  14. # If you are running from inetd, go to "ServerAdmin".
  15.  
  16. # Port: The port the standalone listens to. For ports < 1023, you will
  17. # need httpd to be run as root initially.
  18.  
  19. Port 80
  20.  
  21. # HostnameLookups: Log the names of clients or just their IP numbers
  22. #   e.g.   www.apache.org (on) or 204.62.129.132 (off)
  23. # The default is off because it'd be overall better for the net if people
  24. # had to knowingly turn this feature on.
  25.  
  26. HostnameLookups off
  27.  
  28. # If you wish httpd to run as a different user or group, you must run
  29. # httpd as root initially and it will switch.  
  30.  
  31. # User/Group: The name (or #number) of the user/group to run httpd as.
  32. #  On SCO (ODT 3) use User nouser and Group nogroup
  33. #  On HPUX you may not be able to use shared memory as nobody, and the
  34. #  suggested workaround is to create a user www and use that user.
  35.  
  36. User nobody
  37. Group #-1
  38.  
  39. # ServerAdmin: Your address, where problems with the server should be
  40. # e-mailed.
  41.  
  42. ServerAdmin you@your.address
  43.  
  44. # ServerRoot: The directory the server's config, error, and log files
  45. # are kept in
  46.  
  47. ServerRoot @@ServerRoot@@
  48.  
  49. # BindAddress: You can support virtual hosts with this option. This option
  50. # is used to tell the server which IP address to listen to. It can either
  51. # contain "*", an IP address, or a fully qualified Internet domain name.
  52. # See also the VirtualHost directive.
  53.  
  54. #BindAddress *
  55.  
  56. # ErrorLog: The location of the error log file. If this does not start
  57. # with /, ServerRoot is prepended to it.
  58.  
  59. ErrorLog logs/error_log
  60.  
  61. # TransferLog: The location of the transfer log file. If this does not
  62. # start with /, ServerRoot is prepended to it.
  63.  
  64. TransferLog logs/access_log
  65.  
  66. # PidFile: The file the server should log its pid to
  67. PidFile logs/httpd.pid
  68.  
  69. # ScoreBoardFile: File used to store internal server process information.
  70. # Not all architectures require this.  But if yours does (you'll know because
  71. # this file is created when you run Apache) then you *must* ensure that
  72. # no two invocations of Apache share the same scoreboard file.
  73. ScoreBoardFile logs/apache_status
  74.  
  75. # ServerName allows you to set a host name which is sent back to clients for
  76. # your server if it's different than the one the program would get (i.e. use
  77. # "www" instead of the host's real name).
  78. #
  79. # Note: You cannot just invent host names and hope they work. The name you 
  80. # define here must be a valid DNS name for your host. If you don't understand
  81. # this, ask your network administrator.
  82.  
  83. #ServerName new.host.name
  84.  
  85. # CacheNegotiatedDocs: By default, Apache sends Pragma: no-cache with each
  86. # document that was negotiated on the basis of content. This asks proxy
  87. # servers not to cache the document. Uncommenting the following line disables
  88. # this behavior, and proxies will be allowed to cache the documents.
  89.  
  90. #CacheNegotiatedDocs
  91.  
  92. # Timeout: The number of seconds before receives and sends time out
  93.  
  94. Timeout 300
  95.  
  96. # KeepAlive: Whether or not to allow persistent connections (more than
  97. # one request per connection). Set to "Off" to deactivate.
  98.  
  99. KeepAlive On
  100.  
  101. # MaxKeepAliveRequests: The maximum number of requests to allow
  102. # during a persistent connection. Set to 0 to allow an unlimited amount.
  103. # We reccomend you leave this number high, for maximum performance.
  104.  
  105. MaxKeepAliveRequests 100
  106.  
  107. # KeepAliveTimeout: Number of seconds to wait for the next request
  108.  
  109. KeepAliveTimeout 15
  110.  
  111. # Server-pool size regulation.  Rather than making you guess how many
  112. # server processes you need, Apache dynamically adapts to the load it
  113. # sees --- that is, it tries to maintain enough server processes to
  114. # handle the current load, plus a few spare servers to handle transient
  115. # load spikes (e.g., multiple simultaneous requests from a single
  116. # Netscape browser).
  117.  
  118. # It does this by periodically checking how many servers are waiting
  119. # for a request.  If there are fewer than MinSpareServers, it creates
  120. # a new spare.  If there are more than MaxSpareServers, some of the
  121. # spares die off.  These values are probably OK for most sites ---
  122.  
  123. MinSpareServers 5
  124. MaxSpareServers 10
  125.  
  126. # Number of servers to start --- should be a reasonable ballpark figure.
  127.  
  128. StartServers 5
  129.  
  130. # Limit on total number of servers running, i.e., limit on the number
  131. # of clients who can simultaneously connect --- if this limit is ever
  132. # reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW.
  133. # It is intended mainly as a brake to keep a runaway server from taking
  134. # Unix with it as it spirals down...
  135.  
  136. MaxClients 150
  137.  
  138. # MaxRequestsPerChild: the number of requests each child process is
  139. #  allowed to process before the child dies.
  140. #  The child will exit so as to avoid problems after prolonged use when
  141. #  Apache (and maybe the libraries it uses) leak.  On most systems, this
  142. #  isn't really needed, but a few (such as Solaris) do have notable leaks
  143. #  in the libraries.
  144.  
  145. MaxRequestsPerChild 30
  146.  
  147. # Proxy Server directives. Uncomment the following line to
  148. # enable the proxy server:
  149.  
  150. #ProxyRequests On
  151.  
  152. # To enable the cache as well, edit and uncomment the following lines:
  153.  
  154. #CacheRoot @@ServerRoot@@/proxy
  155. #CacheSize 5
  156. #CacheGcInterval 4
  157. #CacheMaxExpire 24
  158. #CacheLastModifiedFactor 0.1
  159. #CacheDefaultExpire 1
  160. #NoCache a_domain.com another_domain.edu joes.garage_sale.com
  161.  
  162. # Listen: Allows you to bind Apache to specific IP addresses and/or
  163. # ports, in addition to the default. See also the VirtualHost command
  164.  
  165. #Listen 3000
  166. #Listen 12.34.56.78:80
  167.  
  168. # VirtualHost: Allows the daemon to respond to requests for more than one
  169. # server address, if your server machine is configured to accept IP packets
  170. # for multiple addresses. This can be accomplished with the ifconfig 
  171. # alias flag, or through kernel patches like VIF.
  172.  
  173. # Any httpd.conf or srm.conf directive may go into a VirtualHost command.
  174. # See alto the BindAddress entry.
  175.  
  176. #<VirtualHost host.some_domain.com>
  177. #ServerAdmin webmaster@host.some_domain.com
  178. #DocumentRoot /www/docs/host.some_domain.com
  179. #ServerName host.some_domain.com
  180. #ErrorLog logs/host.some_domain.com-error_log
  181. #TransferLog logs/host.some_domain.com-access_log
  182. #</VirtualHost>
  183.  
  184.  
  185.